In This Topic
Copies a range of cells as a flatten array.
Syntax
'Declaration
Public Function GetNonEmptyItems( _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal column2 As Integer, _
ByRef () As CellReference _
) As
'Usage
Dim instance As CellMatrix(Of T)
Dim row As Integer
Dim column As Integer
Dim row2 As Integer
Dim column2 As Integer
Dim locations() As CellReference
Dim value() As
value = instance.GetNonEmptyItems(row, column, row2, column2, locations)
public GetNonEmptyItems(
int ,
int column,
int ,
int column2,
out CellReference[]
)
Parameters
- row
- An integer value indicates the first row.
- column
- An integer value indicates the first column.
- row2
- An integer value indicates the last row.
- column2
- An integer value indicates the last column.
- locations
See Also